home *** CD-ROM | disk | FTP | other *** search
/ Aminet 39 / Aminet 39 (2000)(Schatztruhe)[!][Oct 2000].iso / Aminet / comm / tcp / Tinyproxy-133.lha / tinyproxy-1.3.3 / doc / HTTP_ERROR_CODES < prev    next >
Encoding:
Text File  |  2000-02-16  |  1.3 KB  |  62 lines

  1. The following is a list of the response codes for the various states of
  2. the server. Currently I would recommend we stick to the HTTP/1.0 return
  3. codes for our errors. Once we start to support the distinction between
  4. HTTP/1.0 and HTTP/1.1 requests from the client, then we can use the
  5. HTTP/1.1 responses.
  6.     -- rjkaes
  7.  
  8. [ Taken from Apache: The Definitive Guide by Ben Laurie & Peter Laurie.
  9.   Published by O'Reilly & Associates, Inc. pg. 146-147 ]
  10.  
  11. HTTP/1.0
  12. 200    OK
  13. 302    Found
  14. 304    Not Modified
  15. 400    Bad Request
  16. 401    Unauthorized
  17. 403    Forbidden
  18. 404    Not Found
  19. 500    Server error
  20. 501    Not Implemented
  21. 502    Bad Gateway
  22. 503    Out of resources
  23.  
  24. HTTP/1.1
  25. 100    Continue
  26. 101    Switching Protocols
  27. 200    Ok
  28. 201    Created
  29. 202    Accepted
  30. 203    Non-Authoritative Information
  31. 204    No Content
  32. 205    Reset Content
  33. 206    Partial Content
  34. 300    Multiple Choices
  35. 301    Moved Permanently
  36. 302    Moved Temporarily
  37. 303    See Other
  38. 304    Not Modified
  39. 305    Use Proxy
  40. 400    Bad Request
  41. 401    Unauthorized
  42. 402    Payment Required
  43. 403    Forbidden
  44. 404    Not Found
  45. 405    Method Not Allowed
  46. 406    Not Acceptable
  47. 407    Proxy Authentication Required
  48. 408    Request Time-out
  49. 409    Conflict
  50. 410    Gone
  51. 411    Length Required
  52. 412    Precondition Failed
  53. 413    Request Entity Too Large
  54. 414    Request-URI Too Large
  55. 415    Unsupported Media Type
  56. 500    Internal Server Error
  57. 501    Not Implemented
  58. 502    Bad Gateway
  59. 503    Service Unavailable
  60. 504    Gateway Time-out
  61. 505    HTTP Version not supported
  62.